f1413807f2579c453e55d179fd159f45d22f2ec8,android/library/src/main/java/com/liferay/mobile/screens/comment/display/interactor/update/CommentUpdateInteractor.java,CommentUpdateInteractor,execute,#CommentEvent#,18
Before Change
validate(commentId, newBody);
ScreenscommentService service = new ScreenscommentService(getSession());
JSONObject jsonObject = service.updateComment(commentId, newBody);
After Change
validate(commentId, newBody);
ScreensCommentConnector connector = ServiceProvider.getInstance().getScreensCommentConnector(getSession());
JSONObject jsonObject = connector.updateComment(commentId, newBody);